home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip: 2005 Utilities
/
CHIP Utilities 2005.7z
/
CHIP Utilities 2005.iso
/
images
/
arachne.igz
/
arachne.img
/
LEVEL0
/
LPPRD.CAB
/
Bin
/
tcpinfo.bat
< prev
Wrap
DOS Batch File
|
2005-01-16
|
716b
|
37 lines
@if "%debug%"=="" echo off
if "%1"=="-?" goto _help
if "%1"=="/?" goto _help
if "%1"=="-h" goto _help
if "%1"=="/h" goto _help
if not exist %ramdrv%\bin\pprd.exe goto _nopprd
if "%wattcp.cfg%"=="" goto _nowattcp
if not exist %wattcp.cfg%\wattcp.cfg goto _nowattcp
if not exist %ramdrv%\bin\pktchk.com goto _npktchk
%ramdrv%\bin\pktchk.com 0x20 0xff >nul
if errorlevel 1 goto _nowattcp
:_npktchk
%ramdrv%\bin\pprd.exe -x
goto _end
:_help
echo.
echo TCPINFO: WATTCP TCPINFO implementation by 'PPRD.EXE -x'
echo.
goto _end
:_nopprd
echo.
echo TCPINFO: (ERROR) Missing 'PPRD.EXE'
echo.
goto _end
:_nowattcp
echo.
echo TCPINFO: (ERROR) Missing 'WATTCP.CFG'
echo.
goto _end
:_end